Quiz on Scaling Across CPUs
Let’s take a quiz based on scaling across CPU concepts learned in this chapter.
Quiz: Scaling Across CPUs
10
The cotyledon library is built for ________.
Your Answer
A)It serves as an abstraction of the threading module.
Explanation
No, it is not an abstraction to the threading module.
B)
It enhances the performance of threading.
Explanation
It is not used for the performance enhancement of other modules.
Correct Answer
C)It is designed to build and manage long-running processes.
Explanation
Yes, it creates many threads and processes under the hood to manage long-running tasks.
D)
It is the library that takes threads as arguments and runs them without using GIL.
Explanation
No, it does not take threads as arguments.
Question 10 of 1010 attempted
Mehdi Abaakouk on CPU Scaling
Coding Challenge: Scaling Across CPUs